home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
dl_exsrc.zoo
/
lwrite.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-06-28
|
156 b
|
11 lines
#include <unistd.h>
#include "extras.h"
long lwrite(h, data, length)
int h;
char *data;
long length;
{
return _write(h, data, length);
}